home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / et290a.zip / install.cmd < prev    next >
OS/2 REXX Batch file  |  1996-10-19  |  690b  |  39 lines

  1. /* Pre-installation script for Electronic Teller */
  2. '@echo off'
  3.  
  4. 'cls'
  5. say 'Electronic Teller'
  6. say 'Copyright (c) 1994-1996 Paul H. Caron.'
  7. say 'All rights reserved.'
  8. say ''
  9.  
  10. files.0 = 8
  11. files.1 = 'install.exe'
  12. files.2 = 'g21aoi2d.dll'
  13. files.3 = 'gcrtoi1d.dll'
  14. files.4 = 'gcrtoi2d.dll'
  15. files.5 = 'disk1.lst'
  16. files.6 = 'disk2.lst'
  17. files.7 = 'demo1.lst'
  18. files.8 = 'et_dllz.dll'
  19.  
  20. call charout , ' Unzipping installation files - please wait '
  21. i = 1
  22. do files.0
  23.     'disk.1 -o -qq -C '||files.i
  24.     call charout , '.'
  25.     i = i + 1
  26. end
  27. say ''
  28.  
  29. 'install.exe'
  30.  
  31. call charout , ' Cleaning up '
  32. i = 1
  33. do files.0
  34.     'del '||files.i
  35.     call charout , '.'
  36.     i = i + 1;
  37. end
  38. say ''
  39.